home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-01-01 | 990 b | 48 lines | [TEXT/MPS ] |
- //# Copyright: © 1993 - 1995 by Apple Computer, Inc., all rights reserved.
-
- #ifndef _TYPLSITR_
- #define _TYPLSITR_
-
- #ifndef _ODOBJECT_
- #include "ODObject.idl"
- #endif
-
- //=====================================================================================
- // Classes defined in this interface
- //=====================================================================================
- interface ODTypeListIterator;
-
-
- //=====================================================================================
- // Class ODTypeListIterator
- //=====================================================================================
-
- interface ODTypeListIterator : ODObject
- {
- ODBoolean IsNotComplete();
- ODType First();
- ODType Next();
-
-
- #ifdef __SOMIDL__
- implementation
- {
- majorversion = 1; minorversion = 0;
-
- functionprefix = ODTypeListIterator;
-
- override:
- somUninit;
-
- releaseorder:
- IsNotComplete,
- First,
- Next,
- reserved1;
-
- };
- #endif //# __SOMIDL__
- };
-
- #endif // _TYPLSITR_
-